[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 PRINT EXP[,EXP...]
PRINTLN [exp[,exp]]

 Function
  Print (write) a line to the screen (without or with a newline appended).

 Syntax
  PRINT exp[,exp]
  -or-
  PRINTLN [exp[,exp]]

   exp  - An expression of any type to evaluate and write to the screen.

 Remarks
  These statements will evalutate zero, one or more expressions of any
  type and write the results to the display.  The PRINTLN will append a
  newline to the end of the expressions; PRINT will not.  Note that at
  least one expression must be specified for PRINT, unlike PRINTLN which
  need not have any arguments passed to it.  Both statements will process
  all @ codes and display them as expected.

 Examples
  PRINT "The name of the currently running PPE file is "
  PRINTLN PPENAME(),"."
  PRINT "The path where it is located is "
  PRINTLN PPEPATH(),"."
  PRINT "The date is ",DATE()," and the time is ",TIME(),"."
  PRINTLN
  PRINT "@X1FThis is bright white on blue..."
  PRINTLN "how do you like it @FIRST@"

See Also: MPRINT/MPRINTLN SPRINT/SPRINTLN
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson